home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / komunikace / apache / apache_2[1].2.2-win32-x86-no_ssl.msi / Data1.cab / F241989_latex.xsl (.txt) < prev    next >
LaTeX Document  |  2006-04-21  |  13KB  |  331 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE xsl:stylesheet [
  3.     <!ENTITY % HTTPD-VERSION SYSTEM "../version.ent">
  4.     %HTTPD-VERSION;
  5.  Copyright 2003-2005 The Apache Software Foundation or its licensors, as
  6.  applicable.
  7.  Licensed under the Apache License, Version 2.0 (the "License");
  8.  you may not use this file except in compliance with the License.
  9.  You may obtain a copy of the License at
  10.      http://www.apache.org/licenses/LICENSE-2.0
  11.  Unless required by applicable law or agreed to in writing, software
  12.  distributed under the License is distributed on an "AS IS" BASIS,
  13.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  See the License for the specific language governing permissions and
  15.  limitations under the License.
  16. <xsl:stylesheet version="1.0"
  17.               xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  18. <xsl:output 
  19.   method="text"
  20.   encoding="ISO-8859-1"
  21.   indent="no"
  22. <!-- Read the localized messages from the specified language file -->
  23. <xsl:variable name="message" select="document('../lang/en.xml')
  24.                                      /language/messages/message"/>
  25. <xsl:variable name="allmodules" select="document('../xsl/util/allmodules.xml')
  26.                                         /items/item[@lang='en']"/>
  27. <!-- Get the guts of the stylesheets -->
  28. <xsl:include href="manualpage.xsl" />
  29. <xsl:include href="common.xsl" />
  30. <xsl:include href="html.xsl" />
  31. <xsl:include href="synopsis.xsl" />
  32. <xsl:include href="moduleindex.xsl" />
  33. <xsl:include href="directiveindex.xsl" />
  34. <xsl:include href="faq.xsl" />
  35. <xsl:include href="quickreference.xsl" />
  36. <xsl:template match="sitemap">
  37. <xsl:text>
  38. \documentclass[10pt]{book}
  39. \usepackage{times}
  40. \usepackage{longtable}
  41. \usepackage{style/latex/atbeginend}
  42. \usepackage[pdftex]{graphicx}
  43. \usepackage[colorlinks=true,letterpaper=true,linkcolor=blue,urlcolor=blue]{hyperref}
  44. % Let LaTeX be lenient about very-bad line wrapping.
  45. \tolerance=9999 
  46. \emergencystretch=60pt
  47. % Adjust margins to a reasonable level
  48. \topmargin 0pt
  49. \advance \topmargin by -\headheight
  50. \advance \topmargin by -\headsep
  51. \textheight 8.9in
  52. \oddsidemargin 0pt
  53. \evensidemargin \oddsidemargin
  54. \marginparwidth 0.5in
  55. \textwidth 6.5in
  56. % Keep paragraphs flush left (rather than the default of indenting
  57. % the first line) and put a space between paragraphs.
  58. \setlength{\parindent}{0ex}
  59. \addtolength{\parskip}{1.2ex}
  60. % Shrink the inter-item spaces
  61. \AfterBegin{itemize}{\setlength{\itemsep}{0em}}
  62. \pagestyle{headings}
  63. \hypersetup{
  64.     pdftitle={</xsl:text>
  65. <xsl:value-of select="$message[@id='apache']" />
  66. <xsl:text> </xsl:text>
  67. <xsl:value-of select="$message[@id='http-server']" />
  68. <xsl:text> </xsl:text>
  69. <xsl:value-of select="$message[@id='documentation']" />
  70. <xsl:text> </xsl:text>
  71. <xsl:value-of select="$message[@id='version']" />
  72. <xsl:text>},
  73.     pdfauthor={Apache Software Foundation}
  74. \title{</xsl:text>
  75. <xsl:value-of select="$message[@id='apache']" />
  76. <xsl:text> </xsl:text>
  77. <xsl:value-of select="$message[@id='http-server']" />
  78. <xsl:text> </xsl:text>
  79. <xsl:value-of select="$message[@id='documentation']" />
  80. <xsl:text> </xsl:text>
  81. <xsl:value-of select="$message[@id='version']" />
  82. <xsl:text>\\ \bigskip \bigskip
  83. \includegraphics{images/feather}\\ \bigskip}
  84. \author{Apache Software Foundation}
  85. \date{\today}
  86. \begin{document}
  87. \frontmatter
  88. \maketitle
  89. \section*{About The PDF Documentation}
  90. Copyright \copyright 2005 The Apache Software Foundation
  91. Licensed under the Apache License, Version 2.0 (the "License"); 
  92. you may not use this file except in compliance with the License. 
  93. You may obtain a copy of the License at \href{http://www.apache.org/licenses/LICENSE-2.0}{http://www.apache.org/licenses/LICENSE-2.0}
  94. This version of the Apache HTTP Server Documentation is converted from
  95. XML source files to \LaTeX\ using XSLT with the help of Apache Ant,
  96. Apache XML Xalan, and Apache XML Xerces.
  97. Since the HTML version of the documentation is more commonly checked
  98. during development, the PDF version may contain some errors and
  99. inconsistencies, especially in formatting.  If you have difficulty
  100. reading a part of this file, please consult the HTML version
  101. of the documentation on the Apache HTTP Server website at
  102. \href{http://httpd.apache.org/docs/&httpd.docs;/}{http://httpd.apache.org/docs/&httpd.docs;/}
  103. The Apache HTTP Server Documentation is maintained by the Apache HTTP
  104. Server Documentation Project.  More information is available at
  105. \href{http://httpd.apache.org/docs-project/}{http://httpd.apache.org/docs-project/}
  106. \tableofcontents
  107. \mainmatter
  108. </xsl:text>
  109. <xsl:for-each select="category">
  110.   <xsl:text>\chapter{</xsl:text>
  111.   <xsl:apply-templates select="title" mode="printcat"/>
  112.   <xsl:text>}
  113. </xsl:text>
  114.     <xsl:apply-templates/>
  115.     <xsl:if test="@id = 'modules'">
  116.         <xsl:apply-templates select="document($allmodules)/modulefilelist" />
  117.     </xsl:if>
  118. </xsl:for-each>
  119. <xsl:text>\end{document}</xsl:text>
  120. </xsl:template>
  121. <xsl:template match="page">
  122. <xsl:text>\include{</xsl:text>
  123. <xsl:choose>
  124. <xsl:when test="contains(@href,'.')">
  125.   <xsl:value-of select="substring-before(@href,'.')"/>
  126. </xsl:when>
  127. <xsl:otherwise>
  128.   <xsl:value-of select="concat(@href,'index')"/>
  129. </xsl:otherwise>
  130. </xsl:choose>
  131. <xsl:text>}
  132. </xsl:text>
  133. </xsl:template>
  134. <xsl:template match="category/title" mode="printcat">
  135. <xsl:apply-templates/>
  136. </xsl:template>
  137. <xsl:template match="category/title"></xsl:template>
  138. <xsl:template match="modulefilelist">
  139. <xsl:apply-templates/>
  140. </xsl:template>
  141. <xsl:template match="modulefile">
  142. <xsl:text>\include{mod/</xsl:text>
  143. <xsl:value-of select="substring-before(.,'.')"/>
  144. <xsl:text>}
  145. </xsl:text>
  146. </xsl:template>
  147. <xsl:template match="summary">
  148. <xsl:apply-templates/>
  149. </xsl:template>
  150. <xsl:template name="replace-string">
  151.   <xsl:param name="text"/>
  152.   <xsl:param name="replace"/>
  153.   <xsl:param name="with"/>
  154.   <xsl:choose>
  155.     <xsl:when test="not(contains($text,$replace))">
  156.       <xsl:value-of select="$text"/>
  157.     </xsl:when>
  158.     <xsl:otherwise>
  159.       <xsl:value-of select="substring-before($text,$replace)"/>
  160.       <xsl:value-of select="$with"/>
  161.       <xsl:call-template name="replace-string">
  162.         <xsl:with-param name="text" select="substring-after($text,$replace)"/>
  163.         <xsl:with-param name="replace" select="$replace"/>
  164.         <xsl:with-param name="with" select="$with"/>
  165.        </xsl:call-template>
  166.      </xsl:otherwise>
  167.    </xsl:choose>
  168. </xsl:template>
  169. <!-- ==================================================================== -->
  170. <!-- Take care of all the LaTeX special characters.                       -->
  171. <!-- Silly multi-variable technique used to avoid deep recursion.         -->
  172. <!-- ==================================================================== -->
  173. <xsl:template match="text()">
  174. <xsl:call-template name="ltescape">
  175.   <xsl:with-param name="string" select="."/>
  176. </xsl:call-template>
  177. </xsl:template>
  178. <xsl:template name="ltescape">
  179. <xsl:param name="string"/>
  180. <xsl:variable name="result1">
  181.  <xsl:choose>
  182.  <xsl:when test="contains($string, '\')">
  183.    <xsl:call-template name="replace-string">
  184.     <xsl:with-param name="replace" select="'\'"/>
  185.     <xsl:with-param name="with" select="'\textbackslash '"/>
  186.     <xsl:with-param name="text" select="normalize-space($string)"/>
  187.    </xsl:call-template>
  188.  </xsl:when>
  189.  <xsl:otherwise>
  190.    <xsl:value-of select="$string"/>
  191.  </xsl:otherwise>
  192.  </xsl:choose>
  193. </xsl:variable>
  194. <xsl:variable name="result2">
  195.  <xsl:choose>
  196.  <xsl:when test="contains($result1, '$')">
  197.    <xsl:call-template name="replace-string">
  198.     <xsl:with-param name="replace" select="'$'"/>
  199.     <xsl:with-param name="with" select="'\$'"/>
  200.     <xsl:with-param name="text" select="$result1"/>
  201.    </xsl:call-template>
  202.  </xsl:when>
  203.  <xsl:otherwise>
  204.    <xsl:value-of select="$result1"/>
  205.  </xsl:otherwise>
  206.  </xsl:choose>
  207. </xsl:variable>
  208. <xsl:variable name="result3">
  209.  <xsl:choose>
  210.  <xsl:when test="contains($result2, '{')">
  211.    <xsl:call-template name="replace-string">
  212.     <xsl:with-param name="replace" select="'{'"/>
  213.     <xsl:with-param name="with" select="'\{'"/>
  214.     <xsl:with-param name="text" select="$result2"/>
  215.    </xsl:call-template>
  216.  </xsl:when>
  217.  <xsl:otherwise>
  218.    <xsl:value-of select="$result2"/>
  219.  </xsl:otherwise>
  220.  </xsl:choose>
  221. </xsl:variable>
  222. <xsl:variable name="result4">
  223.  <xsl:choose>
  224.  <xsl:when test="contains($result3, '}')">
  225.    <xsl:call-template name="replace-string">
  226.     <xsl:with-param name="replace" select="'}'"/>
  227.     <xsl:with-param name="with" select="'\}'"/>
  228.     <xsl:with-param name="text" select="$result3"/>
  229.    </xsl:call-template>
  230.  </xsl:when>
  231.  <xsl:otherwise>
  232.    <xsl:value-of select="$result3"/>
  233.  </xsl:otherwise>
  234.  </xsl:choose>
  235. </xsl:variable>
  236. <!-- The '[' and ']' characters don't, in general, need to be
  237.   escaped.  But there are times when it is ambiguous whether
  238.   [ is the beginning of an optional argument or a literal '['.
  239.   Hence, it is safer to protect the literal ones with {}. -->
  240. <xsl:variable name="result5">
  241.  <xsl:choose>
  242.  <xsl:when test="contains($result4, '[')">
  243.    <xsl:call-template name="replace-string">
  244.     <xsl:with-param name="replace" select="'['"/>
  245.     <xsl:with-param name="with" select="'{[}'"/>
  246.     <xsl:with-param name="text" select="$result4"/>
  247.    </xsl:call-template>
  248.  </xsl:when>
  249.  <xsl:otherwise>
  250.    <xsl:value-of select="$result4"/>
  251.  </xsl:otherwise>
  252.  </xsl:choose>
  253. </xsl:variable>
  254. <xsl:variable name="result6">
  255.  <xsl:choose>
  256.  <xsl:when test="contains($result5, ']')">
  257.    <xsl:call-template name="replace-string">
  258.     <xsl:with-param name="replace" select="']'"/>
  259.     <xsl:with-param name="with" select="'{]}'"/>
  260.     <xsl:with-param name="text" select="$result5"/>
  261.    </xsl:call-template>
  262.  </xsl:when>
  263.  <xsl:otherwise>
  264.    <xsl:value-of select="$result5"/>
  265.  </xsl:otherwise>
  266.  </xsl:choose>
  267. </xsl:variable>
  268. <xsl:variable name="result7">
  269.  <xsl:choose>
  270.  <xsl:when test="contains($result6, '"')">
  271.    <xsl:call-template name="replace-string">
  272.     <xsl:with-param name="replace" select="'"'"/>
  273.     <xsl:with-param name="with" select="'\texttt{"}'"/>
  274.     <xsl:with-param name="text" select="$result6"/>
  275.    </xsl:call-template>
  276.  </xsl:when>
  277.  <xsl:otherwise>
  278.    <xsl:value-of select="$result6"/>
  279.  </xsl:otherwise>
  280.  </xsl:choose>
  281. </xsl:variable>
  282.     <xsl:call-template name="replace-string">
  283.     <xsl:with-param name="replace" select="'_'"/>
  284.     <xsl:with-param name="with" select="'\_'"/>
  285.     <xsl:with-param name="text">
  286.       <xsl:call-template name="replace-string">
  287.       <xsl:with-param name="replace" select="'#'"/>
  288.       <xsl:with-param name="with" select="'\#'"/>
  289.       <xsl:with-param name="text">
  290.         <xsl:call-template name="replace-string">
  291.         <xsl:with-param name="replace" select="'%'"/>
  292.         <xsl:with-param name="with" select="'\%'"/>
  293.         <xsl:with-param name="text">
  294.           <xsl:call-template name="replace-string">
  295.           <xsl:with-param name="replace" select="'>'"/>
  296.           <xsl:with-param name="with" select="'\textgreater{}'"/>
  297.           <xsl:with-param name="text">
  298.             <xsl:call-template name="replace-string">
  299.             <xsl:with-param name="replace" select="'<'"/>
  300.             <xsl:with-param name="with" select="'\textless{}'"/>
  301.             <xsl:with-param name="text">
  302.               <xsl:call-template name="replace-string">
  303.               <xsl:with-param name="replace" select="'~'"/>
  304.               <xsl:with-param name="with" select="'\textasciitilde{}'"/>
  305.               <xsl:with-param name="text">
  306.                 <xsl:call-template name="replace-string">
  307.                 <xsl:with-param name="replace" select="'^'"/>
  308.                 <xsl:with-param name="with" select="'\^{}'"/>
  309.                 <xsl:with-param name="text">
  310.                     <xsl:call-template name="replace-string">
  311.                     <xsl:with-param name="replace" select="'&'"/>
  312.                     <xsl:with-param name="with" select="'\&'"/>
  313.                     <xsl:with-param name="text" select="$result7"/>
  314.                     </xsl:call-template>
  315.                 </xsl:with-param>
  316.                 </xsl:call-template>
  317.               </xsl:with-param>
  318.               </xsl:call-template>
  319.             </xsl:with-param>
  320.             </xsl:call-template>
  321.           </xsl:with-param>
  322.           </xsl:call-template>
  323.         </xsl:with-param>
  324.         </xsl:call-template>
  325.       </xsl:with-param>
  326.       </xsl:call-template>
  327.     </xsl:with-param>
  328.     </xsl:call-template>
  329. </xsl:template>
  330. </xsl:stylesheet>
  331.